Lender Price API
Locking a Loan Without LOS / 10. Approve Exception / 10.3 Add Lock Event
In This Topic
    10.3 Add Lock Event
    In This Topic

    Path

    POST /rest/v1/lp-ppe-api/price-quote/addLockEvent
    

    Headers        

    Authorization
    
    Bearer {{accessToken}}
    

     

    Body

    Copy Code
    {
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{lockedExceptionId}}",
      "lockEventExceptionInfo": {{lockExceptionObject}},
      "lockEventExtensionInfo": null,
      "scenario": null,
      "hasSellSide": false,
      "sellSideLine": null,
      "lockDateUpdate": null,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "whatever comments "
    }

    Example Request

    Copy Code
    curl --location -g '{{protocol}}{{domain}}/rest/v1/lp-ppe-api/price-quote/addLockEvent' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --data '{
      "priceQuoteId": "{{priceQuoteId}}",
      "lockId": "{{lockId}}",
      "lockStatusId": "{{lockedExceptionId}}",
      "lockEventExceptionInfo": {{lockExceptionObject}},
      "lockEventExtensionInfo": null,
      "scenario": null,
      "hasSellSide": false,
      "sellSideLine": null,
      "lockDateUpdate": null,
      "lockEventId": "{{lockEventId}}",
      "lockEventComment": "whatever comments "
    }'

    Example Response

    This request doesn't return a response body.